/* Sección bienvenida */
#bienvenida {
    background-color: black;
    color: white;
    text-align: center;
    padding: 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
}

#bienvenida h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#bienvenida button {
    background-color: #2C2C2C;
    color:  white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 8px;
}

#bienvenida button:hover {
    background-color: gray;
}

/* Seccion Contenido D3D3D3 */

#contenido {
    text-align: center;
    margin-top: 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
}

#contenido h2 {
    display: inline-block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    border-style: solid;
    border-color: #ffffff;
    border-bottom-color: #999999;
    padding: 0rem 1.5rem 0rem;
}

#presentacion_inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    gap: 50px;
}

.ficha {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    border-style: solid;
    border-color: #D3D3D3;
    /*  <derecha> <abajo> <nvl difuminado>*/
    box-shadow: 15px 15px 6px rgba(0, 0, 0, 0.1);
}

.ficha-2 {
    display: flex;
    flex-direction: column;
    margin: 10px;
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    border-style: solid;
    border-color: #D3D3D3;
    /*  <derecha> <abajo> <nvl difuminado>*/
    box-shadow: 15px 15px 6px rgba(0, 0, 0, 0.1);
    gap: 0.2rem;
}

.ficha-2 p{
    font-size: 24px;
    border-style: solid;
    
}

.ficha-2 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.cata{
    display: flex;
    justify-content: center;
    margin-left: 2.5rem;
}

.ficha img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Boton añadir carro */
.añadirCarro_btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    margin-top: 10px;
}

@media (max-width: 430px) {
    header, nav {
        gap: 10px;
        text-align: center;
    }

    nav {
        margin-top: 15px;
        align-items: center;
    }
}

